home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Win '95 Giga Pack
/
Win95 Giga Pack (Maple Media) (1997).iso
/
GAMES
/
PUZZLES
/
HANGMAN
/
MAKEHELP.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-12-30
|
1KB
|
32 lines
@echo off
REM -- First make map file from Microsoft Visual C++ generated resource.h
echo // MAKEHELP.BAT generated Help Map file. Used by HANGMAN32.HPJ. >"hlp\Hangman32.hm"
echo. >>"hlp\Hangman32.hm"
echo // Commands (ID_* and IDM_*) >>"hlp\Hangman32.hm"
makehm ID_,HID_,0x10000 IDM_,HIDM_,0x10000 resource.h >>"hlp\Hangman32.hm"
echo. >>"hlp\Hangman32.hm"
echo // Prompts (IDP_*) >>"hlp\Hangman32.hm"
makehm IDP_,HIDP_,0x30000 resource.h >>"hlp\Hangman32.hm"
echo. >>"hlp\Hangman32.hm"
echo // Resources (IDR_*) >>"hlp\Hangman32.hm"
makehm IDR_,HIDR_,0x20000 resource.h >>"hlp\Hangman32.hm"
echo. >>"hlp\Hangman32.hm"
echo // Dialogs (IDD_*) >>"hlp\Hangman32.hm"
makehm IDD_,HIDD_,0x20000 resource.h >>"hlp\Hangman32.hm"
echo. >>"hlp\Hangman32.hm"
echo // Frame Controls (IDW_*) >>"hlp\Hangman32.hm"
makehm IDW_,HIDW_,0x50000 resource.h >>"hlp\Hangman32.hm"
REM -- Make help for Project HANGMAN32
echo Building Win32 Help files
start /wait hcrtf -x "hlp\Hangman32.hpj"
echo.
if exist Debug\nul copy "hlp\Hangman32.hlp" Debug
if exist Debug\nul copy "hlp\Hangman32.cnt" Debug
if exist Release\nul copy "hlp\Hangman32.hlp" Release
if exist Release\nul copy "hlp\Hangman32.cnt" Release
echo.